home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / developer-tools / c-tools / vbcc / machines / amiga68k / libsrc / stdio / putchar.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-17  |  90 b   |  10 lines

  1. #include <stdio.h>
  2.  
  3. #undef putchar
  4.  
  5. int putchar(int c)
  6. {
  7.     return(__putc(c,stdout));
  8. }
  9.  
  10.